home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / mount.arc / MOUNT.DOC next >
Text File  |  1986-02-21  |  4KB  |  97 lines

  1. <<< NOTE MOUNTDOC - 103 lines, 0 append(s) >>>
  2.  
  3. MOUNT (4)          MS-DOS PROGRAMMER'S MANUAL           MOUNT (4)
  4.  
  5.  
  6.  
  7. NAME
  8.      MOUNT - Virtual memory disk creator
  9.  
  10. SYNOPSIS
  11.      MOUNT drive: [-m=nnn] [-s=nnn] [-d=nnn] [-c] [/c ...]
  12.  
  13. DESCRIPTION
  14.      Mount initializes a virtual disk in memory and tells the
  15.      ram disk driver where the disk is located.
  16.  
  17.      The -m option tells mount how much memory to allocated to
  18.      the disk.  The default size is 64K.
  19.      The -s option tells mount what sector size to use.  The
  20.      default size is 128 bytes.
  21.  
  22.      The -d option tells mount the number of root directory
  23.      entries desired.  The default is 64.
  24.  
  25.      The -c option displays an extended copyright notice.
  26.      The /c option tells mount to execute the remainder of the
  27.      command line after the disk has been allocated.  Mount then
  28.      dismounts the disk automatically.  This is useful for
  29.      running programs such as compilers where temporary files
  30.      can be redirected to the memory disk.
  31.      If /c is not specified, the default shell is executed.
  32.      MOUNT with no parameters prints a usage guide.
  33.  
  34. SEE ALSO
  35.      RMVRAMDK (4)
  36.  
  37. DIAGNOSTICS
  38.      Unrecognized parameter on command line : %s - ignored
  39.      Drive %c: is not a mountable device - this disk is not
  40.      associated with a RMVRAMDK device driver.
  41.  
  42.      Error performing ioctl query.  Returning to DOS
  43.      Error performing ioctl output: Returning to DOS
  44.      Drive %c: is already mounted - The device driver already
  45.      has a disk.
  46.      Do you wish to dismount virtual disk %c: ? - Upon exit,
  47.      this gives the option of returning to the shell without
  48.      losing the disk
  49.      The requested disk size %uK is outside of the range %uK -
  50.      %uK ...  The requested sector size %u bytes is outside of
  51.      the range %u - %u ...  The requested number of root entries
  52.      %u is outside of the range %u - %u ...  - These three
  53.      messages are used to indicate invalid command line
  54.      arguments. They are followed by the message :
  55.      Using the default size
  56.  
  57.      Number of root directory entries has been updated to %u
  58.      ....  Disk overhead is greater than the disk size ...  -
  59.      These messages tell of modification made by the program
  60.      when the disk parameters were being calculated.
  61.      Insufficient memory to create virtual disk
  62.      Insufficient memory for buffer: Returning to DOS
  63.      Not enough memory to allocate device stack
  64.      Not enough memory to create shell or Could not find shell
  65.      program
  66.  
  67. BUGS
  68.      Logically, this program should be dismounted using a
  69.      program, typically UNMOUNT.  However, the best way to
  70.      protect an area of memory in MS-DOS is to shell a command
  71.      processor after the area.  Terminate and remain resident
  72.      makes freeing the area a major chore which can destroy
  73.      DOS's memory management.
  74.  
  75.      One must use EXIT to exit from the shell back to mount.
  76.  
  77. COPYRIGHT
  78.      Copyright (C) Alex E. Wielhouwer, 1985, 1986
  79.      This program set is distributed free.  No charge may be
  80.      made for these programs.  All other rights reserved.  (
  81.      e.g., Modification rights).
  82.      If you like this program, a contribution of $25 would be
  83.      appreciated.  In return for this contribution, I will send
  84.      you a diskette containing the source code for the latest
  85.      version of the program (provided you give me a return
  86.      address!).
  87.  
  88.      The address is:
  89.         Alex E.  Wielhouwer,
  90.         22-249 Cedarbrae Dr.,
  91.         Waterloo, Ontario, Canada.
  92.         N2L 4S8
  93.  
  94. *** CREATED 02/19/86 09:22:45 BY PROJECT.MANAGER ***
  95.  
  96.  
  97.